read-process-output-max: Increase the default value
authorDmitry Gutov <dmitry@gutov.dev>
Sat, 8 Jun 2024 23:58:19 +0000 (02:58 +0300)
committerDmitry Gutov <dmitry@gutov.dev>
Sat, 8 Jun 2024 23:58:19 +0000 (02:58 +0300)
* src/process.c (read-process-output-max):
Increase the default value to 65536 (bug#66020).

etc/NEWS
src/process.c

index efb9b7078b8a0db0ecda2f90e59315aab6f2f03f..a7d17862242e8a778c0af0582cac1b6928ae3e04 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -505,7 +505,7 @@ This function lets the user execute multiple SQL statements in one go.
 It is useful, for example, when a Lisp program needs to evaluate an
 entire SQL file.
 
-+++
+** The default value of 'read-process-output-max' was increased to 65536.
 \f
 * Editing Changes in Emacs 30.1
 
index fd09bb98c60a5ede7df8be03f3fb44a531f35cc9..fe4dcc531c22b32a466db79249eb67cae169bbf6 100644 (file)
@@ -8877,7 +8877,7 @@ amounts of data in one go.
 
 On GNU/Linux systems, the value should not exceed
 /proc/sys/fs/pipe-max-size.  See pipe(7) manpage for details.  */);
-  read_process_output_max = 4096;
+  read_process_output_max = 65536;
 
   DEFVAR_BOOL ("read-process-output-fast", read_process_output_fast,
               doc: /* Non-nil to optimize the insertion of process output.